home *** CD-ROM | disk | FTP | other *** search
- # Jedi Knight Missions Cog Script
- #
- # EXP_HRAIL.COG
- #
- # EXPLOSION SCRIPT - Homing Rail Det
- #
- # Signals KYLE_M.COG to signal all the other clients to remove this
- # ghost seeking rail det.
- #
- # [RF]
- #
- # (C) 1997 LucasArts Entertainment Co. All Rights Reserved
-
- symbols
-
- template exp=+raildet_exp local
-
- message created
- message timer
-
- end
-
- # ========================================================================================
-
- code
-
- created:
- SendTrigger(GetLocalPlayerThing(), 3503, GetUserData(GetThingParent(GetSenderRef())), GetSenderRef(), 0, 0);
- SetTimerEx(0.5, 0, GetSenderRef(), 0);
- return;
-
- timer:
- DestroyThing(GetParam(0));
- return;
-
- end
-